home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 1997
/
MacHack 1997.toast
/
Hacks
/
Hacks ’96
/
VideoFolder 1.0a
/
Source
/
VideoFolder.h
< prev
next >
Wrap
Text File
|
1996-06-19
|
857b
|
27 lines
// ===========================================================================
// <PP Starter Header>.h ©1994-1996 Metrowerks Inc. All rights reserved.
// ===========================================================================
#pragma once
#include <LApplication.h>
class VideoFolderApp : public LApplication {
public:
VideoFolderApp(); // constructor registers all PPobs
virtual ~VideoFolderApp(); // stub destructor
// this overriding function performs application functions
virtual Boolean ObeyCommand(CommandT inCommand, void* ioParam);
// this overriding function returns the status of menu items
virtual void FindCommandStatus(CommandT inCommand,
Boolean &outEnabled, Boolean &outUsesMark,
Char16 &outMark, Str255 outName);
protected:
virtual void StartUp(); // overriding startup functions
};